Declaration of variables
Let's say you want to declare a variable of type int called
myAge. That is to say, the variable myAge will store an
integer.
In C++, this is written:
int myAge;
All this does is tell the computer that you plan to use an
integer, and that the integer's name is myAge.